Overload | Description |
---|---|
NReadonlyArray<T> Constructor(T[]) | Creates a readonly array that wraps the items of the specified array. It is a user responsibility not to alter the items array until the readonly array is in use. |
NReadonlyArray<T> Constructor(T[],Int32) | Creates a readonly array that wraps the items of the specified array. It is a user responsibility not to alter the items array until the readonly array is in use. |
NReadonlyArray<T> Constructor(T[],Int32,Boolean) | Creates a readonly array that wraps the items of the specified array. If copyItems is false, it is a user responsibility not to alter the items array until the readonly array is in use. Otherwise the constructor internally creates a copy of the items. |